home *** CD-ROM | disk | FTP | other *** search
/ TOS Silver 2000 / TOS Silver 2000.iso / programm / GNUSH22 / EXAMPLES / TEST.C < prev   
Encoding:
C/C++ Source or Header  |  1994-08-07  |  74 b   |  12 lines

  1. int f1(void)
  2. {
  3.   return 2;
  4. }
  5.  
  6. main()
  7. {
  8.   int a;
  9.  
  10.   a = f1();
  11. }
  12.